home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / a_to_d / dll101 / thedll.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  440 b   |  16 lines

  1. library Thedll;               {*Modified line}
  2.  
  3. uses
  4.   {Forms,}                    {*Forms unit removed}
  5.   Aboutbox in 'ABOUTBOX.PAS' {Form1}; {*Our Aboutbox form}
  6.  
  7. exports                       {*Add exports clause}
  8.    LoadOurAboutbox index 1;   {*We will use this to show our Aboutbox}
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13. {  Application.CreateForm(TForm1, Form1);
  14.   Application.Run; }          {*Remove all code between begin and end}
  15. end.
  16.